home *** CD-ROM | disk | FTP | other *** search
- /******************************************************/
- /* */
- /* Browser.c */
- /* */
- /* This is the main program for the Browser; it */
- /* creates an instance of the application and starts */
- /* it running. */
- /* */
- /* Written in Think C version 4.0.2 */
- /* Based on Starter.c */
- /* */
- /* Allen Stenger January 1991 */
- /* */
- /******************************************************/
-
- #include "CBrowserApp.h"
-
- extern CApplication *gApplication;
-
- void main()
- {
- gApplication = new(CBrowserApp);
- ((CBrowserApp *)gApplication)->IBrowserApp();
- gApplication->Run();
- gApplication->Exit();
- }